home *** CD-ROM | disk | FTP | other *** search
/ Cine Live 72 / Cine Live 72.iso / pc / Data / Interface / f36.k < prev    next >
Encoding:
Text File  |  2003-09-04  |  4.2 KB  |  231 lines

  1. module oRoot1 is cBox
  2. with 
  3.     Flags is $00000142; 
  4.     release Editor:
  5.         IOWindow is {$000000E1,$0000002E,$00000267,$000002CC,$00000000,$00000000,$00000000,$00000000};
  6.         LayoutWindow is {$000000A9,$00000047,$0000028F,$000001EF,$00000000,$00000000,$00000064,$00000000};
  7.     end;
  8.     Name is "Root"; 
  9.     Enabled is false; 
  10.     
  11.     Width is 800; Height is 600; 
  12.     
  13.     
  14.     Elements is [
  15.         oMusic2,
  16.         ofond3,
  17.         oScroller4,
  18.         ofilmo_imp6,
  19.         ofilmo_retour7,
  20.         ofilmo_somm8,
  21.         ortf9
  22.     ];
  23.     Events is [
  24.         cOnscreenEvent
  25.         with 
  26.             Commands is [
  27.                 cRunCommand
  28.                 with Flags is $00000004; Target is oMusic2; Rewind is true; end
  29.             ];
  30.         end,
  31.         cKeyboardEvent
  32.         with Value is "+"; 
  33.             Commands is [
  34.                 cSetVolumeCommand
  35.                 with Flags is $00000004; Mode is ExecuteHigher; end
  36.             ];
  37.         end,
  38.         cKeyboardEvent
  39.         with Value is "-"; 
  40.             Commands is [
  41.                 cSetVolumeCommand
  42.                 with Mode is ExecuteLower; end
  43.             ];
  44.         end,
  45.         cKeyboardEvent
  46.         with Flags is $00000004; Value is "m"; 
  47.             Commands is [
  48.                 cRunCommand
  49.                 with Flags is $00000004; Target is oMusic2; Mode is Toggle; Rewind is true; end
  50.             ];
  51.         end
  52.     ];
  53. end;
  54.  
  55. object oMusic2 is cSound
  56. with 
  57.     Flags is $00000150; 
  58.     Name is "Music"; 
  59.     
  60.     AdjustX is AlignToCenter; AdjustY is AlignToMiddle; 
  61.     AdjustWidth is GetDataWidth; AdjustHeight is GetDataHeight; 
  62.     Looping is true; 
  63.     URL is "../Sons/1.mp3"; 
  64.     
  65. end;
  66.  
  67. object ofond3 is cImage
  68. with 
  69.     Name is "fond"; 
  70.     Enabled is false; 
  71.     AdjustX is AlignToCenter; AdjustY is AlignToMiddle; 
  72.     AdjustWidth is GetDataWidth; AdjustHeight is GetDataHeight; 
  73.     
  74.     URL is "../Images/36.jpg"; 
  75.     
  76.     
  77. end;
  78.  
  79. object oScroller4 is cScroller
  80. with 
  81.     Name is "Scroller"; 
  82.     Clipping is true; Cursor is oFingerCursor; 
  83.     X is 510; Y is 104; 
  84.     Width is 256; Height is 438; 
  85.     
  86.     Vertical is oVertical_Macintosh_Color_ScrollBar; 
  87.     Elements is [
  88.         oimage_biographie5
  89.     ];
  90.     Events is [
  91.         cMouseMovedEvent
  92.         with 
  93.             Commands is [
  94.                 cScrollCommand
  95.                 with Target is oTargetSelf; end
  96.             ];
  97.         end
  98.     ];
  99. end;
  100.  
  101. object oimage_biographie5 is cImage
  102. with 
  103.     Name is "image biographie"; 
  104.     
  105.     X is 149; 
  106.     AdjustWidth is GetDataWidth; AdjustHeight is GetDataHeight; 
  107.     
  108.     URL is "../Images/n36.jpg"; 
  109.     
  110.     
  111. end;
  112.  
  113. object ofilmo_imp6 is cImage
  114. with 
  115.     Name is "filmo imp"; 
  116.     Shown is false; Cursor is oFingerCursor; 
  117.     X is 475; Y is 573; 
  118.     AdjustWidth is GetDataWidth; AdjustHeight is GetDataHeight; 
  119.     
  120.     URL is "../Images/actor%20imprim.jpg"; 
  121.     
  122.     
  123.     Events is [
  124.         cMouseEnterEvent
  125.         with 
  126.             Commands is [
  127.                 cShowCommand
  128.                 with Target is oTargetSelf; end
  129.             ];
  130.         end,
  131.         cMouseLeaveEvent
  132.         with 
  133.             Commands is [
  134.                 cShowCommand
  135.                 with Target is oTargetSelf; Mode is Clear; end
  136.             ];
  137.         end,
  138.         cMouseUpEvent
  139.         with Flag is true; 
  140.             Commands is [
  141.                 cPrintCommand
  142.                 with Target is ortf9; end
  143.             ];
  144.         end
  145.     ];
  146. end;
  147.  
  148. object ofilmo_retour7 is cImage
  149. with 
  150.     Name is "filmo retour"; 
  151.     Shown is false; Cursor is oFingerCursor; 
  152.     X is 321; Y is 573; 
  153.     AdjustWidth is GetDataWidth; AdjustHeight is GetDataHeight; 
  154.     
  155.     URL is "../Images/actor%20retour.jpg"; 
  156.     
  157.     
  158.     Events is [
  159.         cMouseEnterEvent
  160.         with 
  161.             Commands is [
  162.                 cShowCommand
  163.                 with Target is oTargetSelf; end
  164.             ];
  165.         end,
  166.         cMouseLeaveEvent
  167.         with 
  168.             Commands is [
  169.                 cShowCommand
  170.                 with Target is oTargetSelf; Mode is Clear; end
  171.             ];
  172.         end,
  173.         cMouseUpEvent
  174.         with Flag is true; 
  175.             Commands is [
  176.                 cRunCommand
  177.                 with Target is oMusic2; Mode is Clear; Rewind is true; end,
  178.                 cBackCommand
  179.                 with end
  180.             ];
  181.         end
  182.     ];
  183. end;
  184.  
  185. object ofilmo_somm8 is cImage
  186. with 
  187.     Name is "filmo somm"; 
  188.     Shown is false; Cursor is oFingerCursor; 
  189.     X is 629; Y is 573; 
  190.     AdjustWidth is GetDataWidth; AdjustHeight is GetDataHeight; 
  191.     
  192.     URL is "../Images/actor%20somm.jpg"; 
  193.     
  194.     
  195.     Events is [
  196.         cMouseEnterEvent
  197.         with 
  198.             Commands is [
  199.                 cShowCommand
  200.                 with Target is oTargetSelf; end
  201.             ];
  202.         end,
  203.         cMouseLeaveEvent
  204.         with 
  205.             Commands is [
  206.                 cShowCommand
  207.                 with Target is oTargetSelf; Mode is Clear; end
  208.             ];
  209.         end,
  210.         cMouseUpEvent
  211.         with Flag is true; 
  212.             Commands is [
  213.                 cBrowseCommand
  214.                 with URL is "sommaire.k"; end
  215.             ];
  216.         end
  217.     ];
  218. end;
  219.  
  220. object ortf9 is cRTFText
  221. with 
  222.     Flags is $00000154; 
  223.     Name is "rtf"; 
  224.     Enabled is false; Shown is false; 
  225.     AdjustX is AlignToLeft; AdjustY is AlignToTop; 
  226.     AdjustWidth is GetLayoutWidth; AdjustHeight is GetDataHeight; 
  227.     
  228.     URL is "../Textes/36.rtf"; 
  229.     
  230.     Antialiased is true; 
  231. end;